Silverlight changes the io.Stream to byte[]
Posted
by Sai
on Stack Overflow
See other posts from Stack Overflow
or by Sai
Published on 2009-10-26T18:01:03Z
Indexed on
2010/04/10
6:13 UTC
Read the original article
Hit count: 449
silverlight-3.0
|wcf
I have created a WCF service for uploading images , which accepts System.IO.Stream
as input parameter and am using streaming. When I added the service reference in Silverlight project then it automatically changed the parameter of my WCF method from System.IO.Stream
to byte[]
. Can anyone suggest if there is a way around this so that I can get System.IO.Stream
type rather than byte[]
.
Thanks in advance
© Stack Overflow or respective owner